home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / src / vmake / readme.vmake2-10 < prev    next >
Encoding:
Text File  |  1994-02-12  |  2.3 KB  |  48 lines

  1. Version 2.10 of VMake adds a new CONFIG slot to the VMake.config file to 
  2. enhance editting of project files, and modifies CONFIG slot 3 to change the 
  3. way the ADD gadget works.
  4.  
  5. CONFIG "10" "ame %f hunt %_PORT_)"
  6.  
  7. Config slot 10 is a command which will be passed to execute(), in the same 
  8. fashion as config slot 7.  This string will be executed whenever the edit
  9. command is invoked and the item currently selected in the list is the
  10. project file (eg myproject.dice)  
  11.  
  12. Config slot 7 is the command used by edit for all other files.  It is 
  13. appropriate to RUN the editor in this case.  This allows REXX interchanges 
  14. between the editor and VMake, eg for processing compile errors.
  15.  
  16. Config slot 10 should invoke the editor directly, so that control will not
  17. be returned to VMake until the editor has saved the file.  If the editor is
  18. invoked, then the READ command will be invoked to read the modified project
  19. file after it has been editted.  This will not work correctly if you RUN the
  20. editor.
  21.  
  22. If Config slot 10 is not present, VMake will use Config slot 7 to edit the 
  23. project file like any other file, and will not invoke the READ command after
  24. the edit command.  This is the way things worked before version 2.10
  25.  
  26. CONFIG slot 3 provides the default pattern match used when the ADD gadget in 
  27. the file list is used.  It has been modified to:
  28.   "(#?.C|#?.H|#?FILE#?)"
  29.  
  30. In addition to updating the documentation for this config slot, it might be 
  31. good to add the following advice with config slots 2, 3 and 4, in the 
  32. documentation for the affected commands: READ, NEW, SAVE, and RECFG; and in
  33. the section "Creating a new file in a Project" which describes using the NEW 
  34. gadget to add a file to a project.
  35.  
  36. CONFIG slot 2 is used when you use the READ, NEW or SAVE commands without a
  37. definite argument as the default pattern for the file requester.  You can
  38. override the option by typing "#?" in the FILE entry of the file requester,
  39. or you can modify CONFIG slot 2 to meet your needs.
  40.  
  41. CONFIG slot 3 is used when you press the NEW gadget in VMake's file list
  42. gadget as the default pattern match for the file requester.  You can override
  43. or modify ... (as above)
  44.  
  45. CONFIG slot 4 (as modified by version 2.7. not as described in the original
  46. docs) is used when you use the RECFG command to read a new configuration file.
  47. (same blurb as for 2 & 3)
  48.